(Flogb): Fix arg names. Don't confuse Lisp_Object with integer.
authorRichard M. Stallman <rms@gnu.org>
Thu, 11 Mar 1993 07:25:50 +0000 (07:25 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 11 Mar 1993 07:25:50 +0000 (07:25 +0000)
src/floatfns.c

index fb6030f69e33d798fc068510fe3bc0ef1f613c71..1235dad2f8651e8f778a5e6c0f9d8b6bb5717cb4 100644 (file)
@@ -624,10 +624,11 @@ This is the same as the exponent of a float.")
   error ("SYSV apparently doesn't have a logb function; what to do?");
 #else
   Lisp_Object val;
-  double f = extract_float (num);
+  int value;
+  double f = extract_float (arg);
 
-  IN_FLOAT (val = logb (f), "logb", num);
-  XSET (val, Lisp_Int, val);
+  IN_FLOAT (value = logb (f), "logb", arg);
+  XSET (val, Lisp_Int, value);
   return val;
 #endif
 }